HTMLify
style.css
Views: 13 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | * { margin: 0; padding: 0; box-sizing: border-box; } body { width: 100%; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding-top: 30px; background: rgb(4, 4, 19); } #searchBox { width: 50%; height: 50px; display: flex; flex-flow: row nowrap; } #input { width: 80%; border: none; outline: none; padding: 10px 20px; font-size: 20px; } #searchBtn { padding: 10px 20px; margin-left: 10px; border: none; background: crimson; color: white; font-weight: bold; cursor: pointer; } .content-container { width: 90%; color: #fff; font-size: 20px; padding-top: 20px; text-align: justify; max-width: 700px; margin-top: 20px; font-family: sans-serif; } /* JavaScript */ mark { background: crimson; } |